1a79f0f3b36302093be87d855bdd5bf8b5566d0e,plugins/svn4idea/src/org/jetbrains/idea/svn/dialogs/SelectLocationDialog.java,SelectLocationDialog,selectCopyDestination,#Project#String#String#String#boolean#,80

Before Change


      if (!dialog.isOK()) return null;

      final String result = dialog.getSelectedURL();
      final String name = dialog.getDestinationName();
      return SVNPathUtil.append(result, name);
    } catch (SVNException e) {
      Messages.showErrorDialog(project, SvnBundle.message("select.location.invalid.url.message", url),

After Change


    SelectLocationDialog dialog =
      openDialog(project, url, dstLabel, dstName, showFiles, SvnBundle.message("select.location.invalid.url.message", url));

    return dialog == null || !dialog.isOK() ? null : SVNPathUtil.append(dialog.getSelectedURL(), dialog.getDestinationName());
  }

  @Nullable